Instance 0Centrality↓:0.9999996940976795 Specificity↑:0.6766764161830635
Class220.readTotal(final BufferedReader reader){
final String line = reader.readLine();
final Matcher matcher = totalPattern.matcher(line);
if (!matcher.matches()) {
throw new ParseError("expected total line but got \"" + line + "\"");
}
return matcher.group(1);
}
|
|